php index of last element in array

81

how to get last array element in php -

<?php

$source_array = ['key1' => 'value1', 'key2' => 'value2', 'key3' => 'value3'];

$result = end($source_array);

echo "Last element: ".$result;

?>

Comments

Submit
0 Comments